Class org.omg.CORBA.INV_IDENT
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.omg.CORBA.INV_IDENT

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----org.omg.CORBA.SystemException
                                   |
                                   +----org.omg.CORBA.INV_IDENT

public final class INV_IDENT
extends SystemException
The CORBA INV_IDENT exception. These exceptions may be thrown as a result of a CORBA INV_IDENT and may also be returned by many standard CORBA API methods. It contains a minor code, allowing more detailed specification, and a completion status.

Constructor Index

 o INV_IDENT()
Constructs a INV_IDENT with a default minor code of 0 and a completion state of COMPLETED_MAYBE.
 o INV_IDENT(int, CompletionStatus)
Constructs a INV_IDENT with the specified minor code and completion status.
 o INV_IDENT(String)
Constructs a INV_IDENT with the specified detail.
 o INV_IDENT(String, int, CompletionStatus)
Constructs a INV_IDENT with the specified detail message, minor code, and completion status.

Constructors

 o INV_IDENT
  public INV_IDENT()
Constructs a INV_IDENT with a default minor code of 0 and a completion state of COMPLETED_MAYBE.
 o INV_IDENT
  public INV_IDENT(String s)
Constructs a INV_IDENT with the specified detail.
Parameters:
s - the String containing a detail message
 o INV_IDENT
  public INV_IDENT(int minor,
                   CompletionStatus completed)
Constructs a INV_IDENT with the specified minor code and completion status.
Parameters:
minor - the minor code
completed - the completion status
 o INV_IDENT
  public INV_IDENT(String s,
                   int minor,
                   CompletionStatus completed)
Constructs a INV_IDENT with the specified detail message, minor code, and completion status. A detail message is a String that describes this particular exception.
Parameters:
s - the String containing a detail message
minor - the minor code
completed - the completion status

All Packages  Class Hierarchy  This Package  Previous  Next  Index